home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / lkbackup.zip / fcntl.h < prev    next >
C/C++ Source or Header  |  1993-05-25  |  351b  |  23 lines

  1. /*
  2. ** fcntl.h
  3. **
  4. ** Emulation of the Unix fcntl.h header file for PRIMOS
  5. **
  6. ** Author: Peter Eriksson <pen@lysator.liu.se>
  7. */
  8.  
  9. #ifndef __FCNTL_H__
  10. #define __FCNTL_H__
  11.  
  12. #define O_RDONLY 0
  13. #define O_WRONLY 1
  14. #define O_RDWR   2
  15.  
  16. #define O_BINARY 0
  17. #define O_EXCL   0
  18. #define O_NDELAY 0
  19. #define O_CREAT  0
  20. #define O_TRUNC  0
  21.  
  22. #endif
  23.